r use within a shared library for several plugins. Each stellar slug registered will * generate unique filters and hooks that give further customization for each slug * * @since 2.0.0 * * @param string $stellar_slug A unique slug to add to the config. * @param string $wp_slug The plugin's basename (used for capturing deactivation "Exit Interview" info). * * @return void */ public static function add_stellar_slug( string $stellar_slug, string $wp_slug = '' ) { static::$stellar_slugs[ $stellar_slug ] = $wp_slug; } /** * Sets the telemetry server url. * * @since 1.0.0 * * @param string $url The url of the telemetry server. * * @return void */ public static function set_server_url( string $url ) { static::$server_url = $url; } }